home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
cc01.arc
/
BEEP.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1986-03-15
|
190 b
|
16 lines
/* beep2 */
/* a longer beep */
#define LIMIT 10000
main() {
int store;
int count = 0;
store = inp(97);
outp(97, 79);
while (count++ < LIMIT)
;
outp(97, store);
}